Skip to content

[pull] main from TryGhost:main#1054

Merged
pull[bot] merged 3 commits into
code:mainfrom
TryGhost:main
Apr 12, 2026
Merged

[pull] main from TryGhost:main#1054
pull[bot] merged 3 commits into
code:mainfrom
TryGhost:main

Conversation

@pull
Copy link
Copy Markdown

@pull pull Bot commented Apr 12, 2026

See Commits and Changes for more details.


Created by pull[bot] (v2.0.0-alpha.4)

Can you help keep this open source service alive? 💖 Please sponsor : )

renovate Bot added 3 commits April 12, 2026 10:43
This PR contains the following updates:

| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/) |
[Confidence](https://docs.renovatebot.com/merge-confidence/) |
|---|---|---|---|
| [lodash-es](https://lodash.com/custom-builds)
([source](https://redirect.github.com/lodash/lodash)) | [`4.17.23` →
`4.18.1`](https://renovatebot.com/diffs/npm/lodash-es/4.17.23/4.18.1) |
![age](https://developer.mend.io/api/mc/badges/age/npm/lodash-es/4.18.1?slim=true)
|
![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/lodash-es/4.17.23/4.18.1?slim=true)
|

### GitHub Vulnerability Alerts

####
[CVE-2026-2950](https://redirect.github.com/lodash/lodash/security/advisories/GHSA-f23m-r3pf-42rh)

### Impact

Lodash versions 4.17.23 and earlier are vulnerable to prototype
pollution in the `_.unset` and `_.omit` functions. The fix for
[CVE-2025-13465](https://redirect.github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg)
only guards against string key members, so an attacker can bypass the
check by passing array-wrapped path segments. This allows deletion of
properties from built-in prototypes such as `Object.prototype`,
`Number.prototype`, and `String.prototype`.

The issue permits deletion of prototype properties but does not allow
overwriting their original behavior.

### Patches

This issue is patched in 4.18.0.

### Workarounds

None. Upgrade to the patched version.

####
[CVE-2026-4800](https://redirect.github.com/lodash/lodash/security/advisories/GHSA-r5fr-rjxr-66jc)

### Impact

The fix for
[CVE-2021-23337](https://redirect.github.com/advisories/GHSA-35jh-r3h4-6jhm)
added validation for the `variable` option in `_.template` but did not
apply the same validation to `options.imports` key names. Both paths
flow into the same `Function()` constructor sink.

When an application passes untrusted input as `options.imports` key
names, an attacker can inject default-parameter expressions that execute
arbitrary code at template compilation time.

Additionally, `_.template` uses `assignInWith` to merge imports, which
enumerates inherited properties via `for..in`. If `Object.prototype` has
been polluted by any other vector, the polluted keys are copied into the
imports object and passed to `Function()`.

### Patches

Users should upgrade to version 4.18.0.

The fix applies two changes:
1. Validate `importsKeys` against the existing
`reForbiddenIdentifierChars` regex (same check already used for the
`variable` option)
2. Replace `assignInWith` with `assignWith` when merging imports, so
only own properties are enumerated

### Workarounds

Do not pass untrusted input as key names in `options.imports`. Only use
developer-controlled, static key names.

---

### Release Notes

<details>
<summary>lodash/lodash (lodash-es)</summary>

###
[`v4.18.1`](https://redirect.github.com/lodash/lodash/releases/tag/4.18.1)

[Compare
Source](https://redirect.github.com/lodash/lodash/compare/4.18.0...4.18.1)

#### Bugs

Fixes a `ReferenceError` issue in `lodash` `lodash-es` `lodash-amd` and
`lodash.template` when using the `template` and `fromPairs` functions
from the modular builds. See [#&#8203;6167
(comment)](https://redirect.github.com/lodash/lodash/issues/6167#issuecomment-4165269769)

These defects were related to how lodash distributions are built from
the main branch using <https://github.com/lodash-archive/lodash-cli>.
When internal dependencies change inside lodash functions, equivalent
updates need to be made to a mapping in the lodash-cli. (hey, it was
ahead of its time once upon a time!). We know this, but we missed it in
the last release. It's the kind of thing that passes in CI, but fails bc
the build is not the same thing you tested.

There is no diff on main for this, but you can see the diffs for each of
the npm packages on their respective branches:

`lodash`:
<lodash/lodash@4.18.0-npm...4.18.1-npm>
`lodash-es`:
<lodash/lodash@4.18.0-es...4.18.1-es>
`lodash-amd`:
<lodash/lodash@4.18.0-amd...4.18.1-amd>

`lodash.template`<lodash/lodash@4.18.0-npm-packages...4.18.1-npm-packages>

###
[`v4.18.0`](https://redirect.github.com/lodash/lodash/releases/tag/4.18.0)

[Compare
Source](https://redirect.github.com/lodash/lodash/compare/4.17.23...4.18.0)

#### v4.18.0

**Full Changelog**:
<lodash/lodash@4.17.23...4.18.0>

##### Security

**`_.unset` / `_.omit`**: Fixed prototype pollution via
`constructor`/`prototype` path traversal
([GHSA-f23m-r3pf-42rh](https://redirect.github.com/lodash/lodash/security/advisories/GHSA-f23m-r3pf-42rh),
[fe8d32e](https://redirect.github.com/lodash/lodash/commit/fe8d32eda854377349a4f922ab7655c8e5df9a0b)).
Previously, array-wrapped path segments and primitive roots could bypass
the existing guards, allowing deletion of properties from built-in
prototypes. Now `constructor` and `prototype` are blocked
unconditionally as non-terminal path keys, matching `baseSet`. Calls
that previously returned `true` and deleted the property now return
`false` and leave the target untouched.

**`_.template`**: Fixed code injection via `imports` keys
([GHSA-r5fr-rjxr-66jc](https://redirect.github.com/lodash/lodash/security/advisories/GHSA-r5fr-rjxr-66jc),
CVE-2026-4800,
[879aaa9](https://redirect.github.com/lodash/lodash/commit/879aaa93132d78c2f8d20c60279da9f8b21576d6)).
Fixes an incomplete patch for CVE-2021-23337. The `variable` option was
validated against `reForbiddenIdentifierChars` but `importsKeys` was
left unguarded, allowing code injection via the same `Function()`
constructor sink. `imports` keys containing forbidden identifier
characters now throw `"Invalid imports option passed into _.template"`.

##### Docs

- Add security notice for `_.template` in threat model and API docs
([#&#8203;6099](https://redirect.github.com/lodash/lodash/pull/6099))
- Document `lower > upper` behavior in `_.random`
([#&#8203;6115](https://redirect.github.com/lodash/lodash/pull/6115))
- Fix quotes in `_.compact` jsdoc
([#&#8203;6090](https://redirect.github.com/lodash/lodash/pull/6090))

##### `lodash.*` modular packages

[Diff](https://redirect.github.com/lodash/lodash/pull/6157)

We have also regenerated and published a select number of the `lodash.*`
modular packages.

These modular packages had fallen out of sync significantly from the
minor/patch updates to lodash. Specifically, we have brought the
following packages up to parity w/ the latest lodash release because
they have had CVEs on them in the past:

- [lodash.orderby](https://www.npmjs.com/package/lodash.orderby)
- [lodash.tonumber](https://www.npmjs.com/package/lodash.tonumber)
- [lodash.trim](https://www.npmjs.com/package/lodash.trim)
- [lodash.trimend](https://www.npmjs.com/package/lodash.trimend)
-
[lodash.sortedindexby](https://www.npmjs.com/package/lodash.sortedindexby)
-
[lodash.zipobjectdeep](https://www.npmjs.com/package/lodash.zipobjectdeep)
- [lodash.unset](https://www.npmjs.com/package/lodash.unset)
- [lodash.omit](https://www.npmjs.com/package/lodash.omit)
- [lodash.template](https://www.npmjs.com/package/lodash.template)

</details>

---

### Configuration

📅 **Schedule**: (in timezone Etc/UTC)

- Branch creation
  - ""
- Automerge
  - Only on Sunday and Saturday (`* * * * 0,6`)
  - Between 12:00 AM and 12:59 PM, only on Monday (`* 0-12 * * 1`)
- Between 10:00 PM and 11:59 PM, Monday through Friday (`* 22-23 * *
1-5`)
- Between 12:00 AM and 04:59 AM, Tuesday through Saturday (`* 0-4 * *
2-6`)

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/TryGhost/Ghost).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMTAuMiIsInVwZGF0ZWRJblZlciI6IjQzLjExMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This PR contains the following updates:

| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/) |
[Confidence](https://docs.renovatebot.com/merge-confidence/) |
|---|---|---|---|
| [iconv-lite](https://redirect.github.com/pillarjs/iconv-lite) |
[`0.6.3` →
`0.7.2`](https://renovatebot.com/diffs/npm/iconv-lite/0.6.3/0.7.2) |
![age](https://developer.mend.io/api/mc/badges/age/npm/iconv-lite/0.7.2?slim=true)
|
![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/iconv-lite/0.6.3/0.7.2?slim=true)
|

---

### Release Notes

<details>
<summary>pillarjs/iconv-lite (iconv-lite)</summary>

###
[`v0.7.2`](https://redirect.github.com/pillarjs/iconv-lite/blob/HEAD/Changelog.md#072)

[Compare
Source](https://redirect.github.com/pillarjs/iconv-lite/compare/v0.7.1...v0.7.2)

##### 🐞 Bug fixes

- Correction of CommonJS exports in TypeScript definitions - by
[@&#8203;plbstl](https://redirect.github.com/plbstl) in
[#&#8203;366](https://redirect.github.com/pillarjs/iconv-lite/pull/366)

Fixed the TypeScript definitions to correctly represent the CommonJS
exports of the library.
This resolves issues where consumers using TypeScript would encounter
errors due to incorrect
  type definitions that did not align with the actual module exports.

###
[`v0.7.1`](https://redirect.github.com/pillarjs/iconv-lite/blob/HEAD/Changelog.md#071)

[Compare
Source](https://redirect.github.com/pillarjs/iconv-lite/compare/v0.7.0...v0.7.1)

##### 🚀 Improvements

- types: improve type definitions and add missing APIs - by
[@&#8203;plbstl](https://redirect.github.com/plbstl) and
[@&#8203;bjohansebas](https://redirect.github.com/bjohansebas) in
[#&#8203;330](https://redirect.github.com/pillarjs/iconv-lite/pull/330)

###
[`v0.7.0`](https://redirect.github.com/pillarjs/iconv-lite/blob/HEAD/Changelog.md#070)

[Compare
Source](https://redirect.github.com/pillarjs/iconv-lite/compare/v0.6.3...v0.7.0)

##### 🐞 Bug fixes

- Handle split surrogate pairs when encoding utf8 - by
[@&#8203;yosion-p](https://redirect.github.com/yosion-p) and
[@&#8203;ashtuchkin](https://redirect.github.com/ashtuchkin) in
[#&#8203;282](https://redirect.github.com/ashtuchkin/iconv-lite/pull/282):

Handle a case where streaming utf8 encoder (converting js strings ->
buffers) encounters
surrogate pairs split between chunks (last character of one chunk is
high surrogate and first
  character of the next chunk is a low surrogate).

- Avoid false positives in encodingExists by using objects without a
prototype - by
[@&#8203;bjohansebas](https://redirect.github.com/bjohansebas) in
[#&#8203;328](https://redirect.github.com/ashtuchkin/iconv-lite/pull/328)

The encodingExists method could return incorrect results if the lookup
matched properties inherited
from the prototype of the object that stores the encodings, such as
constructor and others. This change
replaces that object with one that has no prototype, ensuring that only
explicitly defined valid encodings
in the library are considered. In addition, the fix is applied to the
internal cache system to avoid the same
  kind of false positives

##### 🚀 Improvements

- Make explicit that decode() method supports Uint8Array input - by
[@&#8203;jardicc](https://redirect.github.com/jardicc) in
[#&#8203;271](https://redirect.github.com/ashtuchkin/iconv-lite/pull/271)
- Remove compatibility check for StringDecoder.end method - by
[@&#8203;bjohansebas](https://redirect.github.com/bjohansebas) in
[#&#8203;331](https://redirect.github.com/ashtuchkin/iconv-lite/pull/331)

</details>

---

### Configuration

📅 **Schedule**: (in timezone Etc/UTC)

- Branch creation
  - Only on Sunday and Saturday (`* * * * 0,6`)
  - Between 12:00 AM and 12:59 PM, only on Monday (`* 0-12 * * 1`)
- Between 09:00 PM and 11:59 PM, Monday through Friday (`* 21-23 * *
1-5`)
- Between 12:00 AM and 04:59 AM, Tuesday through Saturday (`* 0-4 * *
2-6`)
- Automerge
  - Only on Sunday and Saturday (`* * * * 0,6`)
  - Between 12:00 AM and 12:59 PM, only on Monday (`* 0-12 * * 1`)
- Between 10:00 PM and 11:59 PM, Monday through Friday (`* 22-23 * *
1-5`)
- Between 12:00 AM and 04:59 AM, Tuesday through Saturday (`* 0-4 * *
2-6`)

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/TryGhost/Ghost).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMTAuMiIsInVwZGF0ZWRJblZlciI6IjQzLjExMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This PR contains the following updates:

| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/) |
[Confidence](https://docs.renovatebot.com/merge-confidence/) |
|---|---|---|---|
| [lucide-react](https://lucide.dev)
([source](https://redirect.github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react))
| [`0.553.0` →
`0.577.0`](https://renovatebot.com/diffs/npm/lucide-react/0.553.0/0.577.0)
|
![age](https://developer.mend.io/api/mc/badges/age/npm/lucide-react/0.577.0?slim=true)
|
![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/lucide-react/0.553.0/0.577.0?slim=true)
|

---

### Release Notes

<details>
<summary>lucide-icons/lucide (lucide-react)</summary>

###
[`v0.577.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.577.0):
Version 0.577.0

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.576.0...0.577.0)

#### What's Changed

- chore(deps): bump rollup from 4.53.3 to 4.59.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in
[#&#8203;4106](https://redirect.github.com/lucide-icons/lucide/pull/4106)
- fix(repo): correctly ignore docs/releaseMetadata via .gitignore by
[@&#8203;bhavberi](https://redirect.github.com/bhavberi) in
[#&#8203;4100](https://redirect.github.com/lucide-icons/lucide/pull/4100)
- feat(icons): added `ellipse` icon by
[@&#8203;KISHORE-KUMAR-S](https://redirect.github.com/KISHORE-KUMAR-S)
in
[#&#8203;3749](https://redirect.github.com/lucide-icons/lucide/pull/3749)

#### New Contributors

- [@&#8203;bhavberi](https://redirect.github.com/bhavberi) made their
first contribution in
[#&#8203;4100](https://redirect.github.com/lucide-icons/lucide/pull/4100)
- [@&#8203;KISHORE-KUMAR-S](https://redirect.github.com/KISHORE-KUMAR-S)
made their first contribution in
[#&#8203;3749](https://redirect.github.com/lucide-icons/lucide/pull/3749)

**Full Changelog**:
<lucide-icons/lucide@0.576.0...0.577.0>

###
[`v0.576.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.576.0):
Version 0.576.0

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.575.0...0.576.0)

#### What's Changed

- Added zodiac signs by
[@&#8203;karsa-mistmere](https://redirect.github.com/karsa-mistmere) in
[#&#8203;712](https://redirect.github.com/lucide-icons/lucide/pull/712)
- fix(icons): fixes guideline violations in `package-*` icons. by
[@&#8203;karsa-mistmere](https://redirect.github.com/karsa-mistmere) in
[#&#8203;4074](https://redirect.github.com/lucide-icons/lucide/pull/4074)
- fix(icons): changed `receipt` icon by
[@&#8203;karsa-mistmere](https://redirect.github.com/karsa-mistmere) in
[#&#8203;4075](https://redirect.github.com/lucide-icons/lucide/pull/4075)
- fix(icons): updated `cuboid` icon tags and categories by
[@&#8203;karsa-mistmere](https://redirect.github.com/karsa-mistmere) in
[#&#8203;4095](https://redirect.github.com/lucide-icons/lucide/pull/4095)
- fix(icons): changed `cuboid` icon by
[@&#8203;jamiemlaw](https://redirect.github.com/jamiemlaw) in
[#&#8203;4098](https://redirect.github.com/lucide-icons/lucide/pull/4098)
- fix(lucide-font, lucide-static): Fixing stable code points by
[@&#8203;ericfennis](https://redirect.github.com/ericfennis) in
[#&#8203;3894](https://redirect.github.com/lucide-icons/lucide/pull/3894)
- feat(icons): added `fishing-rod` icon by
[@&#8203;7ender](https://redirect.github.com/7ender) in
[#&#8203;3839](https://redirect.github.com/lucide-icons/lucide/pull/3839)

**Full Changelog**:
<lucide-icons/lucide@0.575.0...0.576.0>

###
[`v0.575.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.575.0):
Version 0.575.0

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.574.0...0.575.0)

#### What's Changed

- feat(icons): added `message-square-check` icon by
[@&#8203;karsa-mistmere](https://redirect.github.com/karsa-mistmere) in
[#&#8203;4076](https://redirect.github.com/lucide-icons/lucide/pull/4076)
- fix(lucide): Fix ESM Module output path in build by
[@&#8203;ericfennis](https://redirect.github.com/ericfennis) in
[#&#8203;4084](https://redirect.github.com/lucide-icons/lucide/pull/4084)
- feat(icons): added `metronome` icon by
[@&#8203;edwloef](https://redirect.github.com/edwloef) in
[#&#8203;4063](https://redirect.github.com/lucide-icons/lucide/pull/4063)
- fix(icons): remove execution permission of SVG files by
[@&#8203;duckafire](https://redirect.github.com/duckafire) in
[#&#8203;4053](https://redirect.github.com/lucide-icons/lucide/pull/4053)
- fix(icons): changed `file-pen-line` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3970](https://redirect.github.com/lucide-icons/lucide/pull/3970)
- feat(icons): added `square-arrow-right-exit` and
`square-arrow-right-enter` icons by
[@&#8203;EthanHazel](https://redirect.github.com/EthanHazel) in
[#&#8203;3958](https://redirect.github.com/lucide-icons/lucide/pull/3958)
- fix(icons): renamed `flip-*` to `square-centerline-dashed-*` by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3945](https://redirect.github.com/lucide-icons/lucide/pull/3945)

#### New Contributors

- [@&#8203;edwloef](https://redirect.github.com/edwloef) made their
first contribution in
[#&#8203;4063](https://redirect.github.com/lucide-icons/lucide/pull/4063)
- [@&#8203;duckafire](https://redirect.github.com/duckafire) made their
first contribution in
[#&#8203;4053](https://redirect.github.com/lucide-icons/lucide/pull/4053)

**Full Changelog**:
<lucide-icons/lucide@0.573.0...0.575.0>

###
[`v0.574.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.574.0):
Version 0.574.0

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.573.0...0.574.0)

#### What's Changed

- fix(icons): changed `rocking-chair` icon by
[@&#8203;jamiemlaw](https://redirect.github.com/jamiemlaw) in
[#&#8203;3445](https://redirect.github.com/lucide-icons/lucide/pull/3445)
- fix(icons): flipped `coins` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3158](https://redirect.github.com/lucide-icons/lucide/pull/3158)
- feat(icons): added `x-line-top` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;2838](https://redirect.github.com/lucide-icons/lucide/pull/2838)
- feat(icons): added `mouse-left` icon by
[@&#8203;marvfash](https://redirect.github.com/marvfash) in
[#&#8203;2788](https://redirect.github.com/lucide-icons/lucide/pull/2788)
- feat(icons): added `mouse-right` icon by
[@&#8203;marvfash](https://redirect.github.com/marvfash) in
[#&#8203;2787](https://redirect.github.com/lucide-icons/lucide/pull/2787)

#### New Contributors

- [@&#8203;marvfash](https://redirect.github.com/marvfash) made their
first contribution in
[#&#8203;2788](https://redirect.github.com/lucide-icons/lucide/pull/2788)

**Full Changelog**:
<lucide-icons/lucide@0.572.0...0.574.0>

###
[`v0.573.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.573.0):
Version 0.573.0

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.572.0...0.573.0)

#### What's Changed

- fix(icons): changed `rocking-chair` icon by
[@&#8203;jamiemlaw](https://redirect.github.com/jamiemlaw) in
[#&#8203;3445](https://redirect.github.com/lucide-icons/lucide/pull/3445)
- fix(icons): flipped `coins` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3158](https://redirect.github.com/lucide-icons/lucide/pull/3158)
- feat(icons): added `x-line-top` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;2838](https://redirect.github.com/lucide-icons/lucide/pull/2838)
- feat(icons): added `mouse-left` icon by
[@&#8203;marvfash](https://redirect.github.com/marvfash) in
[#&#8203;2788](https://redirect.github.com/lucide-icons/lucide/pull/2788)
- feat(icons): added `mouse-right` icon by
[@&#8203;marvfash](https://redirect.github.com/marvfash) in
[#&#8203;2787](https://redirect.github.com/lucide-icons/lucide/pull/2787)

#### New Contributors

- [@&#8203;marvfash](https://redirect.github.com/marvfash) made their
first contribution in
[#&#8203;2788](https://redirect.github.com/lucide-icons/lucide/pull/2788)

**Full Changelog**:
<lucide-icons/lucide@0.572.0...0.573.0>

###
[`v0.572.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.572.0):
Version 0.572.0

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.571.0...0.572.0)

#### What's Changed

- feat(icons): added `message-circle-check` icon by
[@&#8203;Shrinks99](https://redirect.github.com/Shrinks99) in
[#&#8203;3770](https://redirect.github.com/lucide-icons/lucide/pull/3770)

#### New Contributors

- [@&#8203;Shrinks99](https://redirect.github.com/Shrinks99) made their
first contribution in
[#&#8203;3770](https://redirect.github.com/lucide-icons/lucide/pull/3770)

**Full Changelog**:
<lucide-icons/lucide@0.571.0...0.572.0>

###
[`v0.571.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.571.0):
Version 0.571.0

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.570.0...0.571.0)

#### What's Changed

- fix(icons): rearange `circle`-icons path and circle order by
[@&#8203;adamlindqvist](https://redirect.github.com/adamlindqvist) in
[#&#8203;3746](https://redirect.github.com/lucide-icons/lucide/pull/3746)
- feat(icons): added `shelving-unit` icon by
[@&#8203;karsa-mistmere](https://redirect.github.com/karsa-mistmere) in
[#&#8203;3041](https://redirect.github.com/lucide-icons/lucide/pull/3041)

#### New Contributors

- [@&#8203;adamlindqvist](https://redirect.github.com/adamlindqvist)
made their first contribution in
[#&#8203;3746](https://redirect.github.com/lucide-icons/lucide/pull/3746)

**Full Changelog**:
<lucide-icons/lucide@0.570.0...0.571.0>

###
[`v0.570.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.570.0):
Version 0.570.0

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.569.0...0.570.0)

#### What's Changed

- feat(icons): added `towel-rack` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3350](https://redirect.github.com/lucide-icons/lucide/pull/3350)

**Full Changelog**:
<lucide-icons/lucide@0.569.0...0.570.0>

###
[`v0.569.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.569.0):
Version 0.569.0

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.568.0...0.569.0)

#### What's Changed

- fix(icons): changed `clipboard-pen` icon by
[@&#8203;Spleefies](https://redirect.github.com/Spleefies) in
[#&#8203;4006](https://redirect.github.com/lucide-icons/lucide/pull/4006)
- feat(icons): add `mirror-round` and `mirror-rectangular` by
[@&#8203;Muhammad-Aqib-Bashir](https://redirect.github.com/Muhammad-Aqib-Bashir)
in
[#&#8203;3832](https://redirect.github.com/lucide-icons/lucide/pull/3832)

**Full Changelog**:
<lucide-icons/lucide@0.568.0...0.569.0>

###
[`v0.568.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.568.0):
Version 0.568.0

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.567.0...0.568.0)

#### What's Changed

- fix(icons): adjusted `clapperboard` so slash is no longer protruding
by [@&#8203;torfmuer](https://redirect.github.com/torfmuer) in
[#&#8203;3764](https://redirect.github.com/lucide-icons/lucide/pull/3764)
- feat(icons): Add `git-merge-conflict` icon by
[@&#8203;timmy471](https://redirect.github.com/timmy471) in
[#&#8203;3008](https://redirect.github.com/lucide-icons/lucide/pull/3008)

#### New Contributors

- [@&#8203;torfmuer](https://redirect.github.com/torfmuer) made their
first contribution in
[#&#8203;3764](https://redirect.github.com/lucide-icons/lucide/pull/3764)
- [@&#8203;timmy471](https://redirect.github.com/timmy471) made their
first contribution in
[#&#8203;3008](https://redirect.github.com/lucide-icons/lucide/pull/3008)

**Full Changelog**:
<lucide-icons/lucide@0.567.0...0.568.0>

###
[`v0.567.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.567.0):
Version 0.567.0

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.566.0...0.567.0)

#### What's Changed

- chore(tags): added tags to `info` by
[@&#8203;jamiemlaw](https://redirect.github.com/jamiemlaw) in
[#&#8203;4047](https://redirect.github.com/lucide-icons/lucide/pull/4047)
- fix(icons): changed `gift` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3977](https://redirect.github.com/lucide-icons/lucide/pull/3977)
- feat(icons): added `line-dot-right-horizontal` icon by
[@&#8203;nathan-de-pachtere](https://redirect.github.com/nathan-de-pachtere)
in
[#&#8203;3742](https://redirect.github.com/lucide-icons/lucide/pull/3742)

**Full Changelog**:
<lucide-icons/lucide@0.566.0...0.567.0>

###
[`v0.566.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.566.0):
Version 0.566.0

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.565.0...0.566.0)

#### What's Changed

- fix(icons): changed `forklift` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;4069](https://redirect.github.com/lucide-icons/lucide/pull/4069)
- fix(icons): changed `rocket` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;4067](https://redirect.github.com/lucide-icons/lucide/pull/4067)
- feat(icons): added `globe-off` icon by
[@&#8203;TimNekk](https://redirect.github.com/TimNekk) in
[#&#8203;4051](https://redirect.github.com/lucide-icons/lucide/pull/4051)

#### New Contributors

- [@&#8203;TimNekk](https://redirect.github.com/TimNekk) made their
first contribution in
[#&#8203;4051](https://redirect.github.com/lucide-icons/lucide/pull/4051)

**Full Changelog**:
<lucide-icons/lucide@0.565.0...0.566.0>

###
[`v0.565.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.565.0):
Version 0.565.0

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.564.0...0.565.0)

#### What's Changed

- feat(icons): add `lens-concave` and `lens-convex` by
[@&#8203;Muhammad-Aqib-Bashir](https://redirect.github.com/Muhammad-Aqib-Bashir)
in
[#&#8203;3831](https://redirect.github.com/lucide-icons/lucide/pull/3831)

**Full Changelog**:
<lucide-icons/lucide@0.564.0...0.565.0>

###
[`v0.564.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.564.0):
Version 0.564.0

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.563.0...0.564.0)

#### What's Changed

- chore(docs): Improve SEO icon detail pages by
[@&#8203;ericfennis](https://redirect.github.com/ericfennis) in
[#&#8203;4040](https://redirect.github.com/lucide-icons/lucide/pull/4040)
- feat(icons): added `database-search` icon by
[@&#8203;Spleefies](https://redirect.github.com/Spleefies) in
[#&#8203;4003](https://redirect.github.com/lucide-icons/lucide/pull/4003)
- fix(icons): changed `user-lock` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3971](https://redirect.github.com/lucide-icons/lucide/pull/3971)
- fix(icons): changed `bug-off` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3972](https://redirect.github.com/lucide-icons/lucide/pull/3972)
- fix(icons): changed `bell-dot` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3973](https://redirect.github.com/lucide-icons/lucide/pull/3973)
- fix(icons): changed `bandage` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3967](https://redirect.github.com/lucide-icons/lucide/pull/3967)
- fix(icons): changed `hard-drive` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3622](https://redirect.github.com/lucide-icons/lucide/pull/3622)
- fix(icons): changed `git-branch` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3938](https://redirect.github.com/lucide-icons/lucide/pull/3938)
- fix(icons): changed `file-cog` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3965](https://redirect.github.com/lucide-icons/lucide/pull/3965)
- fix(icons): changed `cloud-alert` and `cloud-check` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3976](https://redirect.github.com/lucide-icons/lucide/pull/3976)
- feat(icons): adds `user-key` and `user-round-key`, updates other
`-key` icons to match by
[@&#8203;karsa-mistmere](https://redirect.github.com/karsa-mistmere) in
[#&#8203;4044](https://redirect.github.com/lucide-icons/lucide/pull/4044)

#### New Contributors

- [@&#8203;Spleefies](https://redirect.github.com/Spleefies) made their
first contribution in
[#&#8203;4003](https://redirect.github.com/lucide-icons/lucide/pull/4003)

**Full Changelog**:
<lucide-icons/lucide@0.563.1...0.564.0>

###
[`v0.563.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.563.0):
Version 0.563.0

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.562.0...0.563.0)

#### What's Changed

- chore(dev): Enable ligatures in font build configuration by
[@&#8203;dcxo](https://redirect.github.com/dcxo) in
[#&#8203;3876](https://redirect.github.com/lucide-icons/lucide/pull/3876)
- chore(repo): add Android to brand stopwords by
[@&#8203;karsa-mistmere](https://redirect.github.com/karsa-mistmere) in
[#&#8203;3895](https://redirect.github.com/lucide-icons/lucide/pull/3895)
- fix(site): add missing titles and a title template by
[@&#8203;taimar](https://redirect.github.com/taimar) in
[#&#8203;3920](https://redirect.github.com/lucide-icons/lucide/pull/3920)
- fix(site): unify and improve the styling of input fields by
[@&#8203;taimar](https://redirect.github.com/taimar) in
[#&#8203;3919](https://redirect.github.com/lucide-icons/lucide/pull/3919)
- fix(icons): changed `star-off` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3952](https://redirect.github.com/lucide-icons/lucide/pull/3952)
- fix(icons): changed `tickets-plane` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3928](https://redirect.github.com/lucide-icons/lucide/pull/3928)
- fix(icons): changed `monitor-off` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3962](https://redirect.github.com/lucide-icons/lucide/pull/3962)
- fix(icons): changed `lasso` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3961](https://redirect.github.com/lucide-icons/lucide/pull/3961)
- fix(icons): changed `cloud-off` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3942](https://redirect.github.com/lucide-icons/lucide/pull/3942)
- docs(site): added lucide-web-components third-party package by
[@&#8203;midesweb](https://redirect.github.com/midesweb) in
[#&#8203;3948](https://redirect.github.com/lucide-icons/lucide/pull/3948)
- chore(deps-dev): bump preact from 10.27.2 to 10.27.3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in
[#&#8203;3955](https://redirect.github.com/lucide-icons/lucide/pull/3955)
- feat(icon): add globe-x icon with metadata by
[@&#8203;Muhammad-Aqib-Bashir](https://redirect.github.com/Muhammad-Aqib-Bashir)
in
[#&#8203;3827](https://redirect.github.com/lucide-icons/lucide/pull/3827)
- fix(icons): changed `waypoints` icon by
[@&#8203;karsa-mistmere](https://redirect.github.com/karsa-mistmere) in
[#&#8203;3990](https://redirect.github.com/lucide-icons/lucide/pull/3990)
- fix(icons): changed `bookmark` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;2906](https://redirect.github.com/lucide-icons/lucide/pull/2906)
- fix(icons): changed `message-square-dashed` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3959](https://redirect.github.com/lucide-icons/lucide/pull/3959)
- fix(icons): changed `cloudy` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3966](https://redirect.github.com/lucide-icons/lucide/pull/3966)
- fix(github-actions): resolved spelling mistake in gh issue close
command by [@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;4000](https://redirect.github.com/lucide-icons/lucide/pull/4000)
- Update LICENSE by
[@&#8203;alxgraphy](https://redirect.github.com/alxgraphy) in
[#&#8203;4009](https://redirect.github.com/lucide-icons/lucide/pull/4009)
- feat(packages): Added aria-hidden fallback for decorative icons to all
packages by [@&#8203;ericfennis](https://redirect.github.com/ericfennis)
in
[#&#8203;3604](https://redirect.github.com/lucide-icons/lucide/pull/3604)
- chore(deps): bump lodash from 4.17.21 to 4.17.23 by
[@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in
[#&#8203;4020](https://redirect.github.com/lucide-icons/lucide/pull/4020)
- chore(deps): bump lodash-es from 4.17.21 to 4.17.23 by
[@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in
[#&#8203;4019](https://redirect.github.com/lucide-icons/lucide/pull/4019)
- Suggest anchoring to a specific lucide version when using a cdn by
[@&#8203;drago1520](https://redirect.github.com/drago1520) in
[#&#8203;3727](https://redirect.github.com/lucide-icons/lucide/pull/3727)
- feat(docs): upgraded backers block by
[@&#8203;karsa-mistmere](https://redirect.github.com/karsa-mistmere) in
[#&#8203;4014](https://redirect.github.com/lucide-icons/lucide/pull/4014)
- fix(site): hide native search input clear "X" icon by
[@&#8203;epifaniofrancisco](https://redirect.github.com/epifaniofrancisco)
in
[#&#8203;3933](https://redirect.github.com/lucide-icons/lucide/pull/3933)
- feat(icons): added `printer-x` icon by
[@&#8203;lt25106](https://redirect.github.com/lt25106) in
[#&#8203;3941](https://redirect.github.com/lucide-icons/lucide/pull/3941)

#### New Contributors

- [@&#8203;dcxo](https://redirect.github.com/dcxo) made their first
contribution in
[#&#8203;3876](https://redirect.github.com/lucide-icons/lucide/pull/3876)
- [@&#8203;midesweb](https://redirect.github.com/midesweb) made their
first contribution in
[#&#8203;3948](https://redirect.github.com/lucide-icons/lucide/pull/3948)
- [@&#8203;alxgraphy](https://redirect.github.com/alxgraphy) made their
first contribution in
[#&#8203;4009](https://redirect.github.com/lucide-icons/lucide/pull/4009)
- [@&#8203;drago1520](https://redirect.github.com/drago1520) made their
first contribution in
[#&#8203;3727](https://redirect.github.com/lucide-icons/lucide/pull/3727)
- [@&#8203;lt25106](https://redirect.github.com/lt25106) made their
first contribution in
[#&#8203;3941](https://redirect.github.com/lucide-icons/lucide/pull/3941)

**Full Changelog**:
<lucide-icons/lucide@0.562.0...0.563.0>

###
[`v0.562.0`](https://redirect.github.com/lucide-icons/lucide/compare/0.561.0...0.562.0)

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.561.0...0.562.0)

###
[`v0.561.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.561.0):
Version 0.561.0

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.560.0...0.561.0)

#### What's Changed

- fix(site): Small adjustments color picker and add clear button search
bar by [@&#8203;ericfennis](https://redirect.github.com/ericfennis) in
[#&#8203;3851](https://redirect.github.com/lucide-icons/lucide/pull/3851)
- feat(icons): added `stone` icon by
[@&#8203;Alportan](https://redirect.github.com/Alportan) in
[#&#8203;3850](https://redirect.github.com/lucide-icons/lucide/pull/3850)

**Full Changelog**:
<lucide-icons/lucide@0.560.0...0.561.0>

###
[`v0.560.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.560.0):
Version 0.560.0

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.559.0...0.560.0)

#### What's Changed

- feat(icons): added `cannabis-off` icon by
[@&#8203;NickVeles](https://redirect.github.com/NickVeles) in
[#&#8203;3748](https://redirect.github.com/lucide-icons/lucide/pull/3748)

#### New Contributors

- [@&#8203;NickVeles](https://redirect.github.com/NickVeles) made their
first contribution in
[#&#8203;3748](https://redirect.github.com/lucide-icons/lucide/pull/3748)

**Full Changelog**:
<lucide-icons/lucide@0.559.0...0.560.0>

###
[`v0.559.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.559.0):
Version 0.559.0

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.558.0...0.559.0)

#### What's Changed

- feat(icons): added `fishing-hook` icon by
[@&#8203;7ender](https://redirect.github.com/7ender) in
[#&#8203;3837](https://redirect.github.com/lucide-icons/lucide/pull/3837)

#### New Contributors

- [@&#8203;7ender](https://redirect.github.com/7ender) made their first
contribution in
[#&#8203;3837](https://redirect.github.com/lucide-icons/lucide/pull/3837)

**Full Changelog**:
<lucide-icons/lucide@0.558.0...0.559.0>

###
[`v0.558.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.558.0):
Version 0.558.0

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.557.0...0.558.0)

#### What's Changed

- feat(icons): added `hd` icon by
[@&#8203;jamiemlaw](https://redirect.github.com/jamiemlaw) in
[#&#8203;2958](https://redirect.github.com/lucide-icons/lucide/pull/2958)

**Full Changelog**:
<lucide-icons/lucide@0.557.0...0.558.0>

###
[`v0.557.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.557.0):
Version 0.557.0

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.556.0...0.557.0)

#### What's Changed

- fix(github/workflows/ci): fixes linting issues by
[@&#8203;karsa-mistmere](https://redirect.github.com/karsa-mistmere) in
[#&#8203;3858](https://redirect.github.com/lucide-icons/lucide/pull/3858)
- fix(icons): changed `memory-stick` icon by
[@&#8203;karsa-mistmere](https://redirect.github.com/karsa-mistmere) in
[#&#8203;3017](https://redirect.github.com/lucide-icons/lucide/pull/3017)
- fix(icons): changed `microchip` icon by
[@&#8203;karsa-mistmere](https://redirect.github.com/karsa-mistmere) in
[#&#8203;3018](https://redirect.github.com/lucide-icons/lucide/pull/3018)
- chore(repo): Update Node version and overal cleanup by
[@&#8203;ericfennis](https://redirect.github.com/ericfennis) in
[#&#8203;3861](https://redirect.github.com/lucide-icons/lucide/pull/3861)
- fix(icons): changed `paint-bucket` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3865](https://redirect.github.com/lucide-icons/lucide/pull/3865)
- fix(icons): changed `brush-cleaning` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3863](https://redirect.github.com/lucide-icons/lucide/pull/3863)
- fix(icons): Swap `thumbs-up` `thumbs-down` paths to fix fill issue by
[@&#8203;theianjones](https://redirect.github.com/theianjones) in
[#&#8203;3873](https://redirect.github.com/lucide-icons/lucide/pull/3873)
- fix(icons): changed `tickets` icon by
[@&#8203;karsa-mistmere](https://redirect.github.com/karsa-mistmere) in
[#&#8203;3859](https://redirect.github.com/lucide-icons/lucide/pull/3859)
- feat(icons): added `layers-plus` icon by
[@&#8203;juanisidoro](https://redirect.github.com/juanisidoro) in
[#&#8203;3367](https://redirect.github.com/lucide-icons/lucide/pull/3367)
- docs(dev): Fix code sample for vanilla JS by
[@&#8203;wavebeem](https://redirect.github.com/wavebeem) in
[#&#8203;3836](https://redirect.github.com/lucide-icons/lucide/pull/3836)
- feat(icons): add `search-error` icon by
[@&#8203;Veatec22](https://redirect.github.com/Veatec22) in
[#&#8203;3292](https://redirect.github.com/lucide-icons/lucide/pull/3292)
- feat(icons): Add `cloud-sync` and `cloud-backup` by
[@&#8203;ericfennis](https://redirect.github.com/ericfennis) in
[#&#8203;3466](https://redirect.github.com/lucide-icons/lucide/pull/3466)
- feat(icons): added `circle-pile` icon by
[@&#8203;nathan-de-pachtere](https://redirect.github.com/nathan-de-pachtere)
in
[#&#8203;3681](https://redirect.github.com/lucide-icons/lucide/pull/3681)
- feat(icons): added `balloon` icon by
[@&#8203;peteruithoven](https://redirect.github.com/peteruithoven) in
[#&#8203;2519](https://redirect.github.com/lucide-icons/lucide/pull/2519)

#### New Contributors

- [@&#8203;theianjones](https://redirect.github.com/theianjones) made
their first contribution in
[#&#8203;3873](https://redirect.github.com/lucide-icons/lucide/pull/3873)
- [@&#8203;juanisidoro](https://redirect.github.com/juanisidoro) made
their first contribution in
[#&#8203;3367](https://redirect.github.com/lucide-icons/lucide/pull/3367)
- [@&#8203;wavebeem](https://redirect.github.com/wavebeem) made their
first contribution in
[#&#8203;3836](https://redirect.github.com/lucide-icons/lucide/pull/3836)
- [@&#8203;Veatec22](https://redirect.github.com/Veatec22) made their
first contribution in
[#&#8203;3292](https://redirect.github.com/lucide-icons/lucide/pull/3292)

**Full Changelog**:
<lucide-icons/lucide@0.556.0...0.557.0>

###
[`v0.556.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.556.0):
Version 0.556.0

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.555.0...0.556.0)

#### What's Changed

- feat(icon): add `book-search` icon
([#&#8203;3573](https://redirect.github.com/lucide-icons/lucide/issues/3573))
by
[@&#8203;Muhammad-Aqib-Bashir](https://redirect.github.com/Muhammad-Aqib-Bashir)
in
[#&#8203;3580](https://redirect.github.com/lucide-icons/lucide/pull/3580)
- chore(dependencies): Update dependencies by
[@&#8203;ericfennis](https://redirect.github.com/ericfennis) in
[#&#8203;3809](https://redirect.github.com/lucide-icons/lucide/pull/3809)
- ci(workflows): Enable trusted publishing in release by
[@&#8203;ericfennis](https://redirect.github.com/ericfennis) in
[#&#8203;3808](https://redirect.github.com/lucide-icons/lucide/pull/3808)
- feat(icons): added `scooter` icon by
[@&#8203;Ahmed-Dghaies](https://redirect.github.com/Ahmed-Dghaies) in
[#&#8203;3818](https://redirect.github.com/lucide-icons/lucide/pull/3818)
- fix(icons): changed `plug` icon by
[@&#8203;jamiemlaw](https://redirect.github.com/jamiemlaw) in
[#&#8203;3841](https://redirect.github.com/lucide-icons/lucide/pull/3841)
- fix(icons): changed `thermometer-sun` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3773](https://redirect.github.com/lucide-icons/lucide/pull/3773)
- fix(icons): Shrink square-scissors icons to match optical volume by
[@&#8203;eden881](https://redirect.github.com/eden881) in
[#&#8203;3603](https://redirect.github.com/lucide-icons/lucide/pull/3603)
- feat(preview-comment): add symmetry preview by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3823](https://redirect.github.com/lucide-icons/lucide/pull/3823)
- feat(icons): added `estimated-weight` icon by
[@&#8203;nathan-de-pachtere](https://redirect.github.com/nathan-de-pachtere)
in
[#&#8203;3822](https://redirect.github.com/lucide-icons/lucide/pull/3822)
- fix(icons): changed `flashlight` icons by
[@&#8203;jamiemlaw](https://redirect.github.com/jamiemlaw) in
[#&#8203;3843](https://redirect.github.com/lucide-icons/lucide/pull/3843)
- fix(icons): changed `bubbles` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3774](https://redirect.github.com/lucide-icons/lucide/pull/3774)
- feat(site): add brand stop words to icon search by
[@&#8203;karsa-mistmere](https://redirect.github.com/karsa-mistmere) in
[#&#8203;3824](https://redirect.github.com/lucide-icons/lucide/pull/3824)
- feat(icons): added `van` icon by
[@&#8203;Ahmed-Dghaies](https://redirect.github.com/Ahmed-Dghaies) in
[#&#8203;3821](https://redirect.github.com/lucide-icons/lucide/pull/3821)

#### New Contributors

-
[@&#8203;Muhammad-Aqib-Bashir](https://redirect.github.com/Muhammad-Aqib-Bashir)
made their first contribution in
[#&#8203;3580](https://redirect.github.com/lucide-icons/lucide/pull/3580)
- [@&#8203;Ahmed-Dghaies](https://redirect.github.com/Ahmed-Dghaies)
made their first contribution in
[#&#8203;3818](https://redirect.github.com/lucide-icons/lucide/pull/3818)
- [@&#8203;eden881](https://redirect.github.com/eden881) made their
first contribution in
[#&#8203;3603](https://redirect.github.com/lucide-icons/lucide/pull/3603)
-
[@&#8203;nathan-de-pachtere](https://redirect.github.com/nathan-de-pachtere)
made their first contribution in
[#&#8203;3822](https://redirect.github.com/lucide-icons/lucide/pull/3822)

**Full Changelog**:
<lucide-icons/lucide@0.555.0...0.556.0>

###
[`v0.555.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.555.0):
Version 0.555.0

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.554.0...0.555.0)

#### What's Changed

- fix(icons): changed `calendars` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3795](https://redirect.github.com/lucide-icons/lucide/pull/3795)
- fix(docs): correct package name and description for Flutter and Lustre
package
([#&#8203;3701](https://redirect.github.com/lucide-icons/lucide/issues/3701))
by
[@&#8203;epifaniofrancisco](https://redirect.github.com/epifaniofrancisco)
in
[#&#8203;3703](https://redirect.github.com/lucide-icons/lucide/pull/3703)
- feat(angular): Angular V21 Support by
[@&#8203;JeevanMahesha](https://redirect.github.com/JeevanMahesha) in
[#&#8203;3807](https://redirect.github.com/lucide-icons/lucide/pull/3807)
- chore(metadata): Adjust navigation category by
[@&#8203;ericfennis](https://redirect.github.com/ericfennis) in
[#&#8203;3461](https://redirect.github.com/lucide-icons/lucide/pull/3461)
- feat(icons): Add `waves-arrow-up` and `waves-arrow-down` by
[@&#8203;ericfennis](https://redirect.github.com/ericfennis) in
[#&#8203;3463](https://redirect.github.com/lucide-icons/lucide/pull/3463)
- fix(icons): changed `scale` icon by
[@&#8203;jamiemlaw](https://redirect.github.com/jamiemlaw) in
[#&#8203;3800](https://redirect.github.com/lucide-icons/lucide/pull/3800)
- feat(icons): added `form` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3558](https://redirect.github.com/lucide-icons/lucide/pull/3558)

**Full Changelog**:
<lucide-icons/lucide@0.554.0...0.555.0>

###
[`v0.554.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.554.0):
Version 0.554.0

[Compare
Source](https://redirect.github.com/lucide-icons/lucide/compare/0.553.0...0.554.0)

#### What's Changed

- fix(icons): Rename fingerprint icon to fingerprint-pattern by
[@&#8203;ericfennis](https://redirect.github.com/ericfennis) in
[#&#8203;3767](https://redirect.github.com/lucide-icons/lucide/pull/3767)
- feat(docs): added lucide-rails third-party package by
[@&#8203;theiereman](https://redirect.github.com/theiereman) in
[#&#8203;3769](https://redirect.github.com/lucide-icons/lucide/pull/3769)
- fix(icons): changed `ampersand` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3771](https://redirect.github.com/lucide-icons/lucide/pull/3771)
- fix(icons): changed `folder-git-2` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3790](https://redirect.github.com/lucide-icons/lucide/pull/3790)
- fix(icons): update `anchor` icon by
[@&#8203;jamiemlaw](https://redirect.github.com/jamiemlaw) in
[#&#8203;2523](https://redirect.github.com/lucide-icons/lucide/pull/2523)
- feat(icons): added `calendars` icon by
[@&#8203;jguddas](https://redirect.github.com/jguddas) in
[#&#8203;3788](https://redirect.github.com/lucide-icons/lucide/pull/3788)

#### Breaking change

For `lucide-react` and `lucide-solid`, imports for `Fingerprint` icon
are changed to `FingerprintPattern`.

##### Lucide React

```diff
- import { Fingerprint } from "lucide-react";
+ import { FingerprintPattern } from "lucide-react";
```

##### Lucide Solid

```diff
- import { Fingerprint } from "lucide/solid";
+ import { FingerprintPattern } from "lucide/solid";

// Or

- import Fingerprint from "lucide/solid/icons/fingerprint";
+ import FingerprintPattern from "lucide/solid/icons/fingerprint-pattern";
```

#### New Contributors

- [@&#8203;theiereman](https://redirect.github.com/theiereman) made
their first contribution in
[#&#8203;3769](https://redirect.github.com/lucide-icons/lucide/pull/3769)

**Full Changelog**:
<lucide-icons/lucide@0.553.0...0.554.0>

</details>

---

### Configuration

📅 **Schedule**: (in timezone Etc/UTC)

- Branch creation
  - Only on Sunday and Saturday (`* * * * 0,6`)
  - Between 12:00 AM and 12:59 PM, only on Monday (`* 0-12 * * 1`)
- Between 09:00 PM and 11:59 PM, Monday through Friday (`* 21-23 * *
1-5`)
- Between 12:00 AM and 04:59 AM, Tuesday through Saturday (`* 0-4 * *
2-6`)
- Automerge
  - Only on Sunday and Saturday (`* * * * 0,6`)
  - Between 12:00 AM and 12:59 PM, only on Monday (`* 0-12 * * 1`)
- Between 10:00 PM and 11:59 PM, Monday through Friday (`* 22-23 * *
1-5`)
- Between 12:00 AM and 04:59 AM, Tuesday through Saturday (`* 0-4 * *
2-6`)

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/TryGhost/Ghost).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMTAuMiIsInVwZGF0ZWRJblZlciI6IjQzLjExMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@pull pull Bot locked and limited conversation to collaborators Apr 12, 2026
@pull pull Bot added the ⤵️ pull label Apr 12, 2026
@pull pull Bot merged commit b9ec001 into code:main Apr 12, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants